home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / QuakeTools / src / include / config.h.in next >
Encoding:
Text File  |  1998-06-11  |  2.2 KB  |  84 lines

  1. #ifndef    CONFIG_H
  2. #define    CONFIG_H
  3. /* ./include/config.h.in.  Generated automatically from configure.in by autoheader.  */
  4.  
  5. /* Define if you don't have vprintf but do have _doprnt.  */
  6. #undef HAVE_DOPRNT
  7.  
  8. /* Define if you support file names longer than 14 characters.  */
  9. #undef HAVE_LONG_FILE_NAMES
  10.  
  11. /* Define if you have the vprintf function.  */
  12. #undef HAVE_VPRINTF
  13.  
  14. /* Define as __inline if that's what the C compiler calls it.  */
  15. #undef inline
  16.  
  17. /* Define if you have the ANSI C header files.  */
  18. #undef STDC_HEADERS
  19.  
  20. /* Define if your processor stores words with the most significant
  21.    byte first (like Motorola and SPARC, unlike Intel and VAX).  */
  22. #undef WORDS_BIGENDIAN
  23.  
  24. /* Define if you have the mkdir function.  */
  25. #undef HAVE_MKDIR
  26.  
  27. /* Define if you have the strtol function.  */
  28. #undef HAVE_STRTOL
  29.  
  30. /* Define if you have the <dirent.h> header file.  */
  31. #undef HAVE_DIRENT_H
  32.  
  33. /* Define if you have the <ndir.h> header file.  */
  34. #undef HAVE_NDIR_H
  35.  
  36. /* Define if you have the <sys/dir.h> header file.  */
  37. #undef HAVE_SYS_DIR_H
  38.  
  39. /* Define if you have the <sys/ndir.h> header file.  */
  40. #undef HAVE_SYS_NDIR_H
  41.  
  42. /* Define if you have the jpeg library (-ljpeg).  */
  43. #undef HAVE_LIBJPEG
  44.  
  45. /* Define if you have the png library (-lpng).  */
  46. #undef HAVE_LIBPNG
  47.  
  48. /* ============================================================================ */
  49.  
  50. /* INLINE_BIGENDIAN activates m68k assembler inlining    *
  51.  * for the translation from little-endian to big-endian    */
  52. #define INLINE_BIGENDIAN
  53.  
  54. /* DYNAMIC_EDGES activates the automatic shrinking and    *
  55.  * growing of the visfaces-struct, which uses less mem    */
  56. #define DYNAMIC_EDGES
  57.  
  58. /* BASE_REGISTER put the __memBase an m68k to "a6"    */
  59. #define    BASE_REGISTER
  60.  
  61. /* CUSTOM_MAXIMA makes some of the limitations in the    *
  62.  * calculation of the bsp-tree configureable        */
  63. //#define    CUSTOM_MAXIMA
  64.  
  65. /* MEM_SIZETRACK tracks the allocated resources and    *
  66.  * reports unfreed mem                    */
  67. #define    MEM_SIZETRACK
  68.  
  69. /* MEM_ANALYSE shows the maximum mem used at runtime    */
  70. #define    MEM_ANALYSE
  71.  
  72. /* unused                        */
  73. //#define    EXHAUSIVE_CHECK
  74. //#define    PRINTCALLS
  75. #define    FASTDEFINES
  76.  
  77. /* on m68k-amigaos the gcc has a bug in sprintf if you    *
  78.  * compile with -3 (check it in configure)        */
  79. #define    BROKEN_SPRINTF
  80.  
  81. //#define    CALCULATE_PIXELDRAW
  82.  
  83. #endif
  84.